home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Skunkware 5
/
Skunkware 5.iso
/
src
/
X11
/
wais
/
waisgate
/
HTPlain.c
< prev
next >
Wrap
C/C++ Source or Header
|
1995-05-09
|
2KB
|
126 lines
/* Plain text object HTWrite.c
** =================
**
** This version of the stream object just writes to a socket.
** The socket is assumed open and left open.
**
** Bugs:
** strings written must be less than buffer size.
*/
#include "HTPlain.h"
#define BUFFER_SIZE 4096; /* Tradeoff */
#include "HTUtils.h"
#include "HText.h"
#include "HTStyle.h"
extern HTStyleSheet * styleSheet;
/* HTML Object
** -----------
*/
struct _HTStream {
CONST HTStreamClass * isa;
HText * text;
};
/* Write the buffer out to the socket
** ----------------------------------
*/
/*_________________________________________________________________________
**
** A C T I O N R O U T I N E S
*/
/* Character handling
** ------------------
*/
PRIVATE void HTPlain_put_character ARGS2(HTStream *, me, char, c)
{
HText_appendCharacter(me->text, c);
}
/* String handling
** ---------------
**
*/
PRIVATE void HTPlain_put_string ARGS2(HTStream *, me, CONST char*, s)
{
HText_appendText(me->text, s);
}
PRIVATE void HTPlain_write ARGS3(HTStream *, me, CONST char*, s, int, l)
{
CONST char* p;
CONST char* e = s+l;
for (p=s; s<e; p++) HText_appendCharacter(me->text, *p);
}
/* Free an HTML object
** -------------------
**
** Note that the SGML parsing context is freed, but the created object is not,
** as it takes on an existence of its own unless explicitly freed.
*/
PRIVATE void HTPlain_free ARGS1(HTStream *, me)
{
free(me);
}
/* End writing
*/
PRIVATE void HTPlain_end_document ARGS1(HTStream *, me)
{
HText_endAppend(me->text);
}
/* Structured Object Class
** -----------------------
*/
PUBLIC CONST HTStreamClass HTPlain =
{
"SocketWriter",
HTPlain_free,
HTPlain_end_document,
HTPlain_put_character, HTPlain_put_string, HTPlain_write,
};
/* New object
** ----------
*/
PUBLIC HTStream* HTPlainPresent ARGS3(
HTPresentation *, pres,
HTParentAnchor *, anchor,
HTStream *, sink)
{
HTStream* me = (HTStream*)malloc(sizeof(*me));
if (me == NULL) outofmem(__FILE__, "HTPlain_new");
me->isa = &HTPlain;
me->text = HText_new(anchor);
HText_setStyle(me->text, HTStyleNamed(styleSheet, "Example"));
HText_beginAppend(me->text);
return (HTStream*) me;
}